home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Converters / Convert_MacPaint / Source / shared.subproj / RCS / AbstractConverter.h,v next >
Text File  |  1995-06-12  |  1KB  |  75 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  beta10:1.2;
  5. locks    death:1.3;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     93.04.04.23.44.06;  author death;  state Exp;
  11. branches ;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     93.01.10.15.07.30;  author death;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     92.07.26.13.56.28;  author death;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @Serves as a basic primitive converter object...
  27. @
  28.  
  29.  
  30. 1.3
  31. log
  32. @Sun Apr  4 23:44:06 PDT 1993
  33. @
  34. text
  35. @#import "ResultObject.h"
  36. #import "ConvertController.h"
  37. //
  38. //
  39. //    This simple class has the simple purpose of serving as a base class for conversion
  40. //    classes that interact with the ConvertController or it's subclasses.  Thus, it simply
  41. //    provides two simple methods which the ConvertController (or subclasses) refer to.
  42. //    This allows the convertcontroller to include this among its imports so it has
  43. //    definitions of these methods to make the compiler happy.  It also serves to remind
  44. //    me what minimum requirements I must have in a conversion class so it will talk with
  45. //    the convertcontrollers (actually, one doesn't even need these, because the convert
  46. //    controller checks before calling. but that's a technicality).
  47. //
  48. //
  49. @@interface AbstractConverter:ResultObject
  50. {
  51.     id    myManager;
  52. }
  53. - init;
  54. - ReportTo: sender;
  55. - (Boolean) isThisAGoodFile: Instance;
  56. @@end
  57.  
  58. @
  59.  
  60.  
  61. 1.2
  62. log
  63. @Sun Jan 10 15:07:30 PST 1993
  64. @
  65. text
  66. @@
  67.  
  68.  
  69. 1.1
  70. log
  71. @Initial revision
  72. @
  73. text
  74. @@
  75.